home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / graphics / text.c < prev    next >
C/C++ Source or Header  |  1996-11-08  |  1KB  |  56 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: text.c,v 1.6 1996/11/08 11:27:58 aros Exp $    $Log
  4.  
  5.     Desc: Graphics function Text()
  6.     Lang: english
  7. */
  8. #include "graphics_intern.h"
  9. #include <graphics/rastport.h>
  10.  
  11. /*****************************************************************************
  12.  
  13.     NAME */
  14.     #include <graphics/rastport.h>
  15.     #include <clib/graphics_protos.h>
  16.  
  17.     AROS_LH3(void, Text,
  18.  
  19. /*  SYNOPSIS */
  20.     AROS_LHA(struct RastPort *, rp, A1),
  21.     AROS_LHA(STRPTR           , string, A0),
  22.     AROS_LHA(ULONG            , count, D0),
  23.  
  24. /*  LOCATION */
  25.     struct GfxBase *, GfxBase, 10, Graphics)
  26.  
  27. /*  FUNCTION
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     29-10-95    digulla automatically created from
  45.                 graphics_lib.fd and clib/graphics_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     AROS_LIBFUNC_INIT
  50.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  51.  
  52.     driver_Text (rp, string, count, GfxBase);
  53.  
  54.     AROS_LIBFUNC_EXIT
  55. } /* Text */
  56.